home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / glibc108.zip / glibc108 / misc / getttyent.c < prev    next >
C/C++ Source or Header  |  1992-09-12  |  5KB  |  204 lines

  1. /*
  2.  * Copyright (c) 1989 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *    This product includes software developed by the University of
  16.  *    California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33.  
  34. #if defined(LIBC_SCCS) && !defined(lint)
  35. static char sccsid[] = "@(#)getttyent.c    5.10 (Berkeley) 3/23/91";
  36. #endif /* LIBC_SCCS and not lint */
  37.  
  38. #include <ttyent.h>
  39. #include <stdio.h>
  40. #include <ctype.h>
  41. #include <string.h>
  42.  
  43. static char zapchar;
  44. static FILE *tf;
  45.  
  46. struct ttyent *
  47. getttynam(tty)
  48.     const char *tty;
  49. {
  50.     register struct ttyent *t;
  51.  
  52.     setttyent();
  53.     while (t = getttyent())
  54.         if (!strcmp(tty, t->ty_name))
  55.             break;
  56.     endttyent();
  57.     return (t);
  58. }
  59.  
  60. struct ttyent *
  61. getttyent()
  62. {
  63.     static struct ttyent tty;
  64.     register int c;
  65.     register char *p;
  66. #define    MAXLINELENGTH    100
  67.     static char line[MAXLINELENGTH];
  68.     static char *skip(), *value();
  69.  
  70.     if (!tf && !setttyent())
  71.         return (NULL);
  72.     for (;;) {
  73.         if (!fgets(p = line, sizeof(line), tf))
  74.             return (NULL);
  75.         /* skip lines that are too big */
  76.         if (!index(p, '\n')) {
  77.             while ((c = getc(tf)) != '\n' && c != EOF)
  78.                 ;
  79.             continue;
  80.         }
  81.         while (isspace(*p))
  82.             ++p;
  83.         if (*p && *p != '#')
  84.             break;
  85.     }
  86.  
  87.     zapchar = 0;
  88.     tty.ty_name = p;
  89.     p = skip(p);
  90.     if (!*(tty.ty_getty = p))
  91.         tty.ty_getty = tty.ty_type = NULL;
  92.     else {
  93.         p = skip(p);
  94.         if (!*(tty.ty_type = p))
  95.             tty.ty_type = NULL;
  96.         else
  97.             p = skip(p);
  98.     }
  99.     tty.ty_status = 0;
  100.     tty.ty_window = NULL;
  101.  
  102. #define    scmp(e)    !strncmp(p, e, sizeof(e) - 1) && isspace(p[sizeof(e) - 1])
  103. #define    vcmp(e)    !strncmp(p, e, sizeof(e) - 1) && p[sizeof(e) - 1] == '='
  104.     for (; *p; p = skip(p)) {
  105.         if (scmp(_TTYS_OFF))
  106.             tty.ty_status &= ~TTY_ON;
  107.         else if (scmp(_TTYS_ON))
  108.             tty.ty_status |= TTY_ON;
  109.         else if (scmp(_TTYS_SECURE))
  110.             tty.ty_status |= TTY_SECURE;
  111.         else if (scmp(_TTYS_TRUSTED))
  112.             tty.ty_status |= TTY_TRUSTED;
  113.         else if (scmp(_TTYS_CONSOLE))
  114.             tty.ty_status |= TTY_CONSOLE;
  115.         else if (vcmp(_TTYS_WINDOW))
  116.             tty.ty_window = value(p);
  117.         else
  118.             break;
  119.     }
  120.  
  121.     if (zapchar == '#' || *p == '#')
  122.         while ((c = *++p) == ' ' || c == '\t')
  123.             ;
  124.     tty.ty_comment = p;
  125.     if (*p == 0)
  126.         tty.ty_comment = 0;
  127.     if (p = index(p, '\n'))
  128.         *p = '\0';
  129.     return (&tty);
  130. }
  131.  
  132. #define    QUOTED    1
  133.  
  134. /*
  135.  * Skip over the current field, removing quotes, and return a pointer to
  136.  * the next field.
  137.  */
  138. static char *
  139. skip(p)
  140.     register char *p;
  141. {
  142.     register char *t;
  143.     register int c, q;
  144.  
  145.     for (q = 0, t = p; (c = *p) != '\0'; p++) {
  146.         if (c == '"') {
  147.             q ^= QUOTED;    /* obscure, but nice */
  148.             continue;
  149.         }
  150.         if (q == QUOTED && *p == '\\' && *(p+1) == '"')
  151.             p++;
  152.         *t++ = *p;
  153.         if (q == QUOTED)
  154.             continue;
  155.         if (c == '#') {
  156.             zapchar = c;
  157.             *p = 0;
  158.             break;
  159.         }
  160.         if (c == '\t' || c == ' ' || c == '\n') {
  161.             zapchar = c;
  162.             *p++ = 0;
  163.             while ((c = *p) == '\t' || c == ' ' || c == '\n')
  164.                 p++;
  165.             break;
  166.         }
  167.     }
  168.     *--t = '\0';
  169.     return (p);
  170. }
  171.  
  172. static char *
  173. value(p)
  174.     register char *p;
  175. {
  176.  
  177.     return ((p = index(p, '=')) ? ++p : NULL);
  178. }
  179.  
  180. int
  181. setttyent()
  182. {
  183.  
  184.     if (tf) {
  185.         (void)rewind(tf);
  186.         return (1);
  187.     } else if (tf = fopen(_PATH_TTYS, "r"))
  188.         return (1);
  189.     return (0);
  190. }
  191.  
  192. int
  193. endttyent()
  194. {
  195.     int rval;
  196.  
  197.     if (tf) {
  198.         rval = !(fclose(tf) == EOF);
  199.         tf = NULL;
  200.         return (rval);
  201.     }
  202.     return (1);
  203. }
  204.